Fox's Git Mirrors
pkg/debug/syslog_stub.go 61af5556362c8bdf7c09a1c01bc84f81629f281b (61af5556) Text, 401 B
// SPDX-License-Identifier: Apache-2.0
// Copyright (c) 2024-2026 Quad4.io
//go:build !unix || haiku
package debug
import (
"errors"
"io"
)
func openSyslogWriter(tag string) (io.Writer, error) {
return nil, errors.New("syslog is not supported on this platform")
}
func openJournaldWriter(tag string) (io.Writer, error) {
return nil, errors.New("journald is not supported on this platform")
}
Served by rngit 1.5.2 - Generated in 0.15s